Next: Making New Objects, Previous: Introduction, Up: Top [Contents][Index]
A class is a definition for organizing data and methods together. An EIEIO class has structures similar to the classes found in other object-oriented (OO) languages.
To create a new class, use the defclass
macro:
Create a new class named class-name. The class is represented by a symbol with the name class-name. EIEIO stores the structure of the class as a symbol property of class-name (see Symbol Components in GNU Emacs Lisp Reference Manual).
The class-name symbol’s variable documentation string is a modified version of the doc string found in options-and-doc. Each time a method is defined, the symbol’s documentation string is updated to include the methods documentation as well.
The parent classes for class-name is superclass-list. Each element of superclass-list must be a class. These classes are the parents of the class being created. Every slot that appears in each parent class is replicated in the new class.
If two parents share the same slot name, the parent which appears in the superclass-list first sets the tags for that slot. If the new class has a slot with the same name as the parent, the new slot overrides the parent’s slot.
When overriding a slot, some slot attributes cannot be
overridden because they break basic OO rules. You cannot
override :type or :protection.
Whenever defclass is used to create a new class, a predicate
is created for it, named
CLASS-NAME-p:
Return non-nil if and only if
OBJECT is of the class CLASS-NAME.
If non-nil, defclass signals an
error if a tag in a slot specifier is unsupported.
This option is here to support programs written with older versions of EIEIO, which did not produce such errors.
| • Inheritance: | How to specify parents classes. | |
| • Slot Options: | How to specify features of a slot. | |
| • Class Options: | How to specify features for this class. |
Next: Making New Objects, Previous: Introduction, Up: Top [Contents][Index]